home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / Reversi.dxr / playing cards_127.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  319 b   |  13 lines

  1. on exitFrame me
  2.   global win, points
  3.   if win = "yes" then
  4.     puppetSound(3, "win")
  5.     member("youwin").text = "You Win!"
  6.     member("points").text = string(points) && "pts"
  7.   else
  8.     puppetSound(3, "lose")
  9.     member("youwin").text = "No Moves Left"
  10.     member("points").text = string(points) && "pts"
  11.   end if
  12. end
  13.